home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_bas / nkbvc11.zip / DEMO.H < prev    next >
C/C++ Source or Header  |  1996-04-11  |  739b  |  36 lines

  1. // Demo.h : main header file for the DEMO application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"        // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDemoApp:
  12. // See Demo.cpp for the implementation of this class
  13. //
  14.  
  15. class CDemoApp : public CWinApp
  16. {
  17. public:
  18.     CDemoApp();
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CDemoApp)
  23.     public:
  24.     virtual BOOL InitInstance();
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28.  
  29.     //{{AFX_MSG(CDemoApp)
  30.     //}}AFX_MSG
  31.     DECLARE_MESSAGE_MAP()
  32. };
  33.  
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36.